home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / daemons / migd / global.h < prev    next >
Encoding:
C/C++ Source or Header  |  1990-04-27  |  1.4 KB  |  50 lines

  1. /*
  2.  * global.h --
  3.  *
  4.  *    Declarations of functions and variables for the migration
  5.  *    daemon global daemon.
  6.  *
  7.  * Copyright 1990 Regents of the University of California
  8.  * Permission to use, copy, modify, and distribute this
  9.  * software and its documentation for any purpose and without
  10.  * fee is hereby granted, provided that the above copyright
  11.  * notice appear in all copies.  The University of California
  12.  * makes no representations about the suitability of this
  13.  * software for any purpose.  It is provided "as is" without
  14.  * express or implied warranty.
  15.  *
  16.  * $Global: /sprite/lib/forms/RCS/proto.h,v 1.5 90/01/12 12:03:25 douglis Exp $ SPRITE (Berkeley)
  17.  */
  18.  
  19. #ifndef _GLOBAL
  20. #define _GLOBAL
  21.  
  22. #include <mig.h>
  23.  
  24. extern int global_Debug;    /* Debugging level for global daemon. */
  25. extern int global_CheckpointInterval;    /* Interval for saving checkpoints. */
  26. extern Mig_Stats global_Stats;        /* Statistics. */
  27.  
  28. extern int     Global_Init();
  29. extern void     Global_End();
  30. extern void     Global_Quit();
  31. extern int     Global_GetLoadInfo();
  32. extern int     Global_GetIdle();
  33. extern int     Global_DoneIoctl();
  34. extern int     Global_Done();
  35. extern int     Global_RemoveHost();
  36. extern int     Global_ChangeState();
  37. extern int     Global_HostUp();
  38. extern int     Global_IsHostUp();
  39. extern int     Global_GetStats();
  40. extern int     Global_ResetStats();
  41. extern int     Global_SetParms();
  42. extern int     Global_GetUpdate();
  43.  
  44.  
  45.  
  46.  
  47.  
  48.  
  49. #endif /* _GLOBAL */
  50.